home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Network Support Library
/
RoseWare - Network Support Library.iso
/
apidev
/
dax1.exe
/
DAP
/
DAPA
/
DOS
/
MAKEFILE
Wrap
Text File
|
1992-07-15
|
1KB
|
50 lines
#
# Program: DapApi.LIB
# This makefile rebuilds the DapApi Library
#
# Created: Tue Feb 25 08:22:28 1992
#
# MAKEINIT defines many of the macros used herein
# The following macros can be set via your environment:
# CCFDOS : Set compile options
# MMODEL : Set memory model 'smclh'
# QMKVER : Set to 'd' or 'p' to define VERSION
# SILENT : If defined, .SILENT will be set
!ifndef %dcdir
dcdir = e:\nlm\dc
!else
dcdir = $(%dcdir)
!endif
srcdir=$(dcdir)\dap
objdir=$(dcdir)\dap\dapa\dos
libmgr=$(librarian)
libswi=/l
concha= # don't need this for DOS, just leave empty.
debug = /dDEBUG # use /dDEBUG to define DEBUG for C Preprocessor
!ifndef %ccfdos
d_wccopt = /m$(model) /w4 /e99 /zp1 /d2 $(debug)
p_wccopt = /m$(model) /w4 /s /zp1 /oax
x_wccopt = $($(version)_wccopt) /dDOSCLIENT
!else
x_wccopt = $(%ccfdos) /dDOSCLIENT
!endif
compiler_cmd = $(wcc) $(x_wccopt) $[*.c
.BEFORE
echo $(build_msg)
set include=$(dcdir);$(inc_dir)
set lib=$(lib_dir)
set wcg=$(code_gen)
.c.obj:
$(compiler_cmd)
!include $(srcdir)\dapa\makeclnt